home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 41.zip / BS1 part 41 / Amiga Plus 1.adf / S / AmigaPLUS.alias next >
Text File  |  1978-04-08  |  3KB  |  69 lines

  1. ; This is the original Shell-startup provided by Commodore.
  2. ;Prompt "%N.%S> "   ;the semi-colon makes this line a comment.
  3. ALIAS xcopy copy [] clone
  4. ALIAS endshell endcli
  5. ALIAS pro execute s:spat protect []
  6. ALIAS sdate execute s:spat setdate []
  7. ALIAS ren execute s:dpat rename []
  8. ALIAS clear echo "*E[0;0H*E[J" ; Clear the screen
  9. ALIAS reverse echo "*E[0;0H*E[41;30m*E[J" ; ECHOing these ANSI escape codes
  10. ALIAS normal echo "*E[0;0H*E[40;31m*E[J"  ; to the screen sets the text styles.
  11. ; These are my own additional ALIASes
  12. Prompt "%N-%S> "  ; I like the dash...
  13. ALIAS clone copy [] clone
  14. ALIAS end endcli
  15. ALIAS ls  list
  16. ALIAS cls echo "*E[0;0H*E[J"
  17. ALIAS del delete []
  18. ALIAS x execute []
  19. ALIAS ed run ed [] ; my c:Ed is Matt Dillon's editor DME, I love it.
  20. ALIAS md makedir
  21. ALIAS ass assign
  22. ALIAS fm format DRIVE df1: NAME blank NOICONS
  23. ALIAS sys cd sys:
  24. ALIAS res resident []
  25. ALIAS c: cd c:
  26. ALIAS s: cd s:
  27. ALIAS fonts: cd fonts:
  28. ALIAS devs: cd devs:
  29. ALIAS libs: cd libs:
  30. ALIAS ram: cd ram:
  31. ALIAS rad: cd vd0:  ; I like ASDG's VD0: more than RAD: since I don't boot
  32. ALIAS vd0: cd vd0:  ; from my ram disk.
  33. ALIAS df1: cd df1:
  34. ALIAS 3: cd df3:  ;  I wish I still had all these extra disk drives!
  35. ALIAS 2: cd df2:
  36. ALIAS 1: cd df1:
  37. ALIAS df0: cd df0:
  38. ALIAS 0: cd df0:
  39. ALIAS : cd :   ; These are kind of like the IBM style of heirarchical dir.s
  40. ALIAS / cd /
  41. ALIAS read more ; I have moved more into my C: directory
  42. ALIAS shell newshell newcon:0/10/625/180/Shell
  43. ALIAS MSDOS newshell newcon:0/10/625/180/MS-DOS_Shell FROM s:MSDos ;BE SURE
  44. ; you have MSDos from the Amiga+ DISK copied to S: or this won't work!
  45. ALIAS hear run list >speak: quick
  46. ALIAS hex type [] opt h
  47. ALIAS unpro protect [] +d
  48. ALIAS dpro protect [] -d
  49. ALIAS hide protect [] +h
  50. ALIAS spro protect [] +s
  51. ;
  52. ALIAS Bold echo "*e[1m*eM"   ; Here are some cute little escape sequences
  53. ALIAS Plain echo "*e[0m*eM"  ; which will change the text style in your
  54. ALIAS Italic echo "*e[3m*eM" ; Shell window. the "*e" is the escape key.
  55. ALIAS Underline echo "*e[4m*eM" ; the rest are ANSI printer codes
  56. ALIAS FgColor0 echo "*e[30m*eM" ; These will set the foreground pen color
  57. ALIAS FgColor1 echo "*e[31m*eM" ; the <esc>M reverses the linefeed.
  58. ALIAS FgColor2 echo "*e[32m*eM"
  59. ALIAS FgColor3 echo "*e[33m*eM"
  60. ALIAS BgColor0 echo "*e[40m*eM" ; These set the background pen color
  61. ALIAS BgColor1 echo "*e[41m*eM"
  62. ALIAS BgColor2 echo "*e[42m*eM"
  63. ALIAS BgColor3 echo "*e[43m*eM"
  64. ALIAS Inverse echo "*e[7m*eM"  ; this will only reverse the command line,
  65.     ; the reverse ALIAS above will reverse the whole window, and clear it.
  66.  
  67.  
  68.  
  69.